home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 1 / Meeting Pearls Vol 1 (1994).iso / amok98-106 / amok104 / oberon-a / bin.lha / s / Oberon-Startup < prev    next >
Text File  |  1994-05-19  |  1KB  |  42 lines

  1. ;   $RCSfile: Oberon-Startup $
  2. ;Description: Aliases to simplify using Oberon-A from the Shell.
  3. ;
  4. ;             Assumes that symbol and object files are kept in the Code
  5. ;             sub-directory and library modules' symbol and object files
  6. ;             are kept in OLIB: and source files have a '.mod' extension.
  7. ;
  8. ;             Intended to be appended to your normal Shell-Startup.
  9. ;
  10. ; Created by: fjc (Frank Copeland)
  11. ;  $Revision: 1.1 $
  12. ;    $Author: fjc $
  13. ;      $Date: 1994/05/19 23:42:47 $
  14. ;________________________________________________________________________
  15.  
  16. Path OBERON-A:C Add
  17.  
  18. ; Purpose: compile a program module.
  19. ; Usage: OComp <module>
  20. Alias OComp OC SYM Code/ DST Code/ DEBUG [].mod
  21.  
  22. ; Purpose: compile a library module.
  23. ; Usage: OLib <module>
  24. Alias OLib OC DST OLIB: DEBUG [].mod
  25.  
  26. ; Purpose: determine the dependants of a module.
  27. ; Usage: ODepend <module>
  28. Alias ODepend ORU SYM Code/ []
  29.  
  30. ; Purpose: batch compile the dependants of a module, assuming that
  31. ;   ODepend has already been called.
  32. ; Usage: OBatch <module>
  33. Alias OBatch OC SYM Code/ DST Code/ DEBUG BATCH [].bat
  34.  
  35. ; Purpose: pre-link a program
  36. ; Usage: OLink <program>
  37. Alias OLink OL SRC Code/ DST Code/ []
  38.  
  39. ; Purpose: link a program, assuming OLink has already been called
  40. ; Usage: Link <program>
  41. Alias Link BLink WITH Code/[].with VERBOSE NODEBUG
  42.